suitability_cuniculus = {
"Discontinuous Urban Fabric": "Low",
"Continuous Urban Fabric": "Very Low",
"Industrial or Commercial Units": "Very Low",
"Airports": "Very Low",
"Port Areas": "Very Low",
"Sport and Leisure Facilities": "Very Low",
"Pastures": "High",
"Non-irrigated Arable Land": "High",
"Permanently Irrigated Land": "Low",
"Complex Cultivation Patterns": "High",
"Land Principally Occupied by Agriculture with Significant Areas of Natural Vegetation": "High",
"Sclerophyllous Vegetation": "High",
"Transitional Woodland-Shrub": "High",
"Natural Grasslands": "High",
"Broad-leaved Forests": "Moderate",
"Mixed Forests": "Moderate",
"Coniferous Forests": "Low-Moderate",
"Peatbogs": "Very Low",
"Inland Marshes": "Very Low",
"Coastal Lagoons": "Very Low",
"Estuaries": "Very Low",
"Intertidal Flats": "Very Low",
"Water Courses": "Low",
}
suitability_quercinus = {
"Discontinuous Urban Fabric": "Low",
"Continuous Urban Fabric": "Very Low",
"Industrial or Commercial Units": "Very Low",
"Airports": "Very Low",
"Port Areas": "Very Low",
"Sport and Leisure Facilities": "Very Low",
"Pastures": "Low",
"Non-irrigated Arable Land": "Low",
"Permanently Irrigated Land": "Very Low",
"Complex Cultivation Patterns": "Moderate",
"Land Principally Occupied by Agriculture with Significant Areas of Natural Vegetation": "Moderate-High",
"Sclerophyllous Vegetation": "High",
"Transitional Woodland-Shrub": "High",
"Natural Grasslands": "Low",
"Broad-leaved Forests": "High",
"Mixed Forests": "High",
"Coniferous Forests": "Moderate-High",
"Peatbogs": "Very Low",
"Inland Marshes": "Very Low",
"Coastal Lagoons": "Very Low",
"Estuaries": "Very Low",
"Intertidal Flats": "Very Low",
"Water Courses": "Low-Moderate",
}
suitability_martes = {
"Discontinuous Urban Fabric": "Low",
"Continuous Urban Fabric": "Very Low",
"Industrial or Commercial Units": "Very Low",
"Airports": "Very Low",
"Port Areas": "Very Low",
"Sport and Leisure Facilities": "Very Low",
"Pastures": "Low",
"Non-irrigated Arable Land": "Low",
"Permanently Irrigated Land": "Very Low",
"Complex Cultivation Patterns": "Moderate",
"Land Principally Occupied by Agriculture with Significant Areas of Natural Vegetation": "Moderate-High",
"Sclerophyllous Vegetation": "High",
"Transitional Woodland-Shrub": "High",
"Natural Grasslands": "Low-Moderate",
"Broad-leaved Forests": "High",
"Mixed Forests": "High",
"Coniferous Forests": "Moderate-High",
"Peatbogs": "Very Low",
"Inland Marshes": "Very Low",
"Coastal Lagoons": "Very Low",
"Estuaries": "Very Low",
"Intertidal Flats": "Very Low",
"Water Courses": "Low-Moderate",
}
suitability_algirus = {
"Discontinuous Urban Fabric": "Moderate",
"Continuous Urban Fabric": "Low",
"Industrial or Commercial Units": "Very Low",
"Airports": "Very Low",
"Port Areas": "Very Low",
"Sport and Leisure Facilities": "Very Low",
"Pastures": "High",
"Non-irrigated Arable Land": "High",
"Permanently Irrigated Land": "Low",
"Complex Cultivation Patterns": "High",
"Land Principally Occupied by Agriculture with Significant Areas of Natural Vegetation": "High",
"Sclerophyllous Vegetation": "High",
"Transitional Woodland-Shrub": "High",
"Natural Grasslands": "Moderate-High",
"Broad-leaved Forests": "Moderate",
"Mixed Forests": "Moderate",
"Coniferous Forests": "Low",
"Peatbogs": "Very Low",
"Inland Marshes": "Very Low",
"Coastal Lagoons": "Very Low",
"Estuaries": "Very Low",
"Intertidal Flats": "Very Low",
"Water Courses": "Low-Moderate",
}
dataset_gpd["suitability_cuniculus"] = dataset_gpd["dominant_land_cover_name"].map(
suitability_cuniculus
)
dataset_gpd["suitability_quercinus"] = dataset_gpd["dominant_land_cover_name"].map(
suitability_quercinus
)
dataset_gpd["suitability_martes"] = dataset_gpd["dominant_land_cover_name"].map(
suitability_martes
)
dataset_gpd["suitability_algirus"] = dataset_gpd["dominant_land_cover_name"].map(
suitability_algirus
)